home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_h.lzh / utility / date.h next >
C/C++ Source or Header  |  1991-03-14  |  451b  |  31 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H 1
  3. /*
  4. **    $Filename: utility/date.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 91/03/04 $
  8. **
  9. **    Date conversion routines ClockData definition.
  10. **
  11. **    (C) Copyright 1989,1990 Commodore-Amiga Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include "exec/types.h"
  17. #endif
  18.  
  19. struct ClockData
  20.     {
  21.     UWORD sec;
  22.     UWORD min;
  23.     UWORD hour;
  24.     UWORD mday;
  25.     UWORD month;
  26.     UWORD year;
  27.     UWORD wday;
  28.     };
  29.  
  30. #endif
  31.